projects
/
gpsbabel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0b17ca
)
Handle null description in output.
author
robertl
<robertl>
Wed, 18 Sep 2002 16:40:29 +0000
(16:40 +0000)
committer
robertl
<robertl>
Wed, 18 Sep 2002 16:40:29 +0000
(16:40 +0000)
gpsutil.c
patch
|
blob
|
history
diff --git
a/gpsutil.c
b/gpsutil.c
index 6e10c1d9b3c23b9863e0e58e7401ba4bb828f501..abae0c85a52a88e119f5156b71516ac68704fba7 100644
(file)
--- a/
gpsutil.c
+++ b/
gpsutil.c
@@
-96,7
+96,7
@@
gpsutil_disp(waypoint *wpt)
lon < 0.0 ? 'W' : 'E',
wpt->position.altitude.altitude_meters,
'm',
- wpt->description,
+ wpt->description
? wpt->description : ""
,
icon_token);
}